net/http.http2writeQueue.currQueue (field)

13 uses

	net/http (current package)
		h2_bundle.go#L11320: 	currQueue []http2FrameWriteRequest
		h2_bundle.go#L11328: 	return (len(q.currQueue) - q.currPos + len(q.nextQueue)) == 0
		h2_bundle.go#L11339: 	if q.currPos >= len(q.currQueue) {
		h2_bundle.go#L11340: 		q.currQueue, q.currPos, q.nextQueue = q.nextQueue, 0, q.currQueue[:0]
		h2_bundle.go#L11342: 	wr := q.currQueue[q.currPos]
		h2_bundle.go#L11343: 	q.currQueue[q.currPos] = http2FrameWriteRequest{}
		h2_bundle.go#L11349: 	if q.currPos < len(q.currQueue) {
		h2_bundle.go#L11350: 		return &q.currQueue[q.currPos]
		h2_bundle.go#L11384: 	for i := range q.currQueue {
		h2_bundle.go#L11385: 		q.currQueue[i] = http2FrameWriteRequest{}
		h2_bundle.go#L11390: 	q.currQueue = q.currQueue[:0]